Welcome![Sign In][Sign Up]
Location:
Search - tool api

Search list

[Other resourceDelphi.Windows.API

Description: Delphi是1个强大的RAD工具,但有时候为了获取系统的更大控制还是必不可少的要使用到WindowsAPI,我现在提供了WindowAPI的Delphi描述,为每个核心API提供了Delphi的描述,包括示例代码-Delphi is a powerful RAD tool But sometimes in order to obtain greater control system is essential to the use of the Windows API. I now Windows API provides a description of Delphi, each core API to provide a description of Delphi, including sample code
Platform: | Size: 1300254 | Author: zhong | Hits:

[OS programSystemSnapshot

Description: 对windows tool help api封装的COM组件,用于显示进程、线程、模块列表等-On the windows tool help api package COM components, used to display process, thread, etc. Module List
Platform: | Size: 165888 | Author: | Hits:

[Windows Developapihooktool

Description: 近日由于需求问题,需要写一个 API Hook 相关的东西,温习了一下牛写的《Windows 核心编程》,做了一个小工具,用来将自定义的 Dll 注入进程空间,并钩住指定 API 函数,关于注入和钩 API 的代码,牛的书里和配套光盘中已经有了,这里主要介绍如何使用这个小工具方便实现截获 API 的功能。(补充代码)-recent demand, the need to write an API Hook related things, a study was made about the cattle "Windows core programming" and made a small tool, used to customize the process Dll into space and hooked designated API function, and on the hook into the API code, cattle book and matching discs have here mainly on how to use this tool to facilitate the achievement of small intercepted API functions. (Supplementary code)
Platform: | Size: 106496 | Author: 京用 | Hits:

[Windows DevelopWindowsAPI分类速查

Description: 在学习vc编程的时候的很好的工具书-vc programming in learning when a good tool
Platform: | Size: 112640 | Author: 卢朝阳 | Hits:

[VxWorksvxworks参考手册

Description: vxWorks参考手册,是一本vxWorks的工具书。能够给初学者以较大帮助。-vxworks reference guide. It is one of vxWorks tool book. It can give big help to initial study of vxworks
Platform: | Size: 3566592 | Author: zjxxwm | Hits:

[Hook apiAPIHookingRevisited_src

Description: There are numerous codes in the www to explain how to hook API functions inside a remote process. So, why creating another one ? This article is the first (I) part of a tool I m working on. This tools won t be too complex, so there is no need for a huge class hierarchy like in almost all other code, nor a hard coded assembly code. This tool is just a technical preview of what is possible to achieve, with QUICK and DIRTY "put your functions here" blocks.-There are numerous codes in the www to explain how to hook API functions inside a remote process. So, why creating another one This article is the first (I) part of a tool I m working on. This tools won t be too complex, so there is no need for a huge class hierarchy like in almost all other code, nor a hard coded assembly code. This tool is just a technical preview of what is possible to achieve, with QUICK and DIRTY "put your functions here" blocks.
Platform: | Size: 8192 | Author: | Hits:

[Hook apixHook

Description: 当你在网络上抓到一些数据包,想知道这些包是哪个进程发出来的时候, 怎么办?这个小工具也许能帮一些忙。 这个工具采用的是HOOK进程的winsock API,把一些数据记录下来。-When you caught on the network data packets and would like to know which of these packages is issued to the process, how do? This small tools may be able to help some busy. This tool is used in the process of winsock HOOK API, some data is recorded.
Platform: | Size: 58368 | Author: 肖武 | Hits:

[Othercespy

Description: A Windows CE API Inecptor Tools
Platform: | Size: 80896 | Author: 张强 | Hits:

[Hook apiSkypeAPISample

Description: 《Skype API应用范例》 —— Skype是个非常优秀的IP电话通信工具,不但可以PC to PC,而且也可以PC to PSTN,当今非常盛行。Skype为了加快自己的发展全面开放了API,其实所谓的API不是真正的Win32 API函数,而是一系列消息的组合,我花了一个晚上从网上找到Skype API说明文档简单地实现了Skype通话和拨号以及发送文字聊天消息的简单功能,仅此达到抛砖引玉的目的。-"Skype API application paradigm"-- Skype is a very outstanding IP telephony communications tool, it can not only PC to PC, but also PC to PSTN, is very popular today. Skype to accelerate our development of open API, the so-called API is not really the Win32 API function, but a series of news portfolio, I spent a night on the Internet Skype API documentation simple to achieve Skype calls and dial-up chat and send text information simple function that alone to start a purpose.
Platform: | Size: 143360 | Author: 谢红伟 | Hits:

[Hook apiapihooktest2

Description: 一、前言   前一段时间发表了一篇文章 “Hook API 工具”,没有附带主程序的源代码,这几天翻出来代码加了些注释,现在补上。不过大家还是最好看看牛的书,书上讲解很详细。 二、对代码的简单说明   总共3个工程,1个主程序,1个HookDll, 1个例子Dll。主程序负责启动进程,并将 HookDll 注入。还有一些额外的功能,比如显示 Log, 例子Dll的信息,导出函数等,HookDll 在 DllMain 启动的时候根据配置钩住指定的 API 函数 三、这种方法的缺点   这种方法是在系统 API 函数起始代码 和 自定义代码之间切换。在多线程的环境下,如果正在切换的过程,其它线程调用这个函数,会出现异常,同时,如果已经切换回系统代码,其它线程对这个API 的调用将抓不到。解决方法就是不要切换,这点应该是可以做到的。 四、结束语   在例子Dll 中,模仿了 ws_32.dll 的输出函数,但是不全,而且 Log 信息也不足,感兴趣的朋友如果有比较全的版本别忘了发给我一份 :) 程序大家可以随意修改,保留那个林月如的 Icon 就行了 ^_^ -one, the preamble some time ago published an article entitled "Hook API tool," not incidental to the main program source code, which turned out a few days code plus some notes now fill. But we still look at the best cattle in the book, spoke on the very detailed. Two of the code simple instructions a total of three projects, a program, a HookDll, an example Dll. Main program to start the process and will HookDll injection. There are some additional features, such as Log shows examples Dll information derived function, in DllMain HookDll boot time configuration hooked designated API Function 3, the shortcomings of this method This method is the system API function code and starting from the definition of switching between code. In multithreaded environment, if the switching proces
Platform: | Size: 146432 | Author: ddd | Hits:

[Delphi/CppBuilderDelphi.Windows.API

Description: Delphi是1个强大的RAD工具,但有时候为了获取系统的更大控制还是必不可少的要使用到WindowsAPI,我现在提供了WindowAPI的Delphi描述,为每个核心API提供了Delphi的描述,包括示例代码-Delphi is a powerful RAD tool But sometimes in order to obtain greater control system is essential to the use of the Windows API. I now Windows API provides a description of Delphi, each core API to provide a description of Delphi, including sample code
Platform: | Size: 1300480 | Author: zhong | Hits:

[CommunicationaceQQ

Description: 一个公司程序附带的工具 仿qq功能实现通信。 利用windows socket api编写。 利用多线程技术。-a company procedures incidental imitation qq functional tool for communication. Using windows api prepared socket. Use multithreading technology.
Platform: | Size: 358400 | Author: ghz_sd | Hits:

[Other resourcethe-realizaton-of-both-Hibernate-and-Java

Description: Hibernate是一个面向Java环境的对象/关系数据库映射工具。对象/关系数据库映射(object/relational mapping(ORM))这个术语表示一种技术,用来把对象模型表示的对象映射到基于SQL的关系模型数据结构中去。Hibernate不仅仅管理Java类到数据库表的映射(包括Java数据类型到SQL数据类型的映射),还提供数据查询和获取数据的方法,可以大幅度减少开发时人工使用SQL和JDBC处理数据的时间。 本文在充分研究以往数据持久层的发展和现状的基础上,引出了基于ORM的数据持久化概念,并通过其与传统持久化方法的深入比较,说明其优越性。依据这一概念,本文进一步引出基于ORM的持久层框架——Hibernate,并详细描述其体系结构和API。-Hibernate is a Java-oriented environment for the object/relational database mapping tool. Object/relational database mapping (object/relational mapping (ORM) ) said the terms of a technology, Object Model is used to express the object mapped to SQL-based relational model of data structure. Hibernate Java class management not only to the mapping database tables (including Java data type S QL data type mapping), but also provided data query and data acquisition methods, can greatly reduce development time using artificial SQL and JDBC data processing time. Based on the previous full study data persistence layer and the development on the basis of the status quo, ORM raises based on the concept of data persistence, and through its persistence with the traditional method of in-depth comp
Platform: | Size: 4283392 | Author: 王浩(jiqixueyuan) | Hits:

[Multimedia Developskypewinapi

Description: Skype是个非常优秀的IP电话通信工具,不但可以PC to PC,而且也可以PC to PSTN,当今非常盛行。Skype为了加快自己的发展全面开放了API,其实所谓的API不是真正的Win32 API函数,而是一系列消息的组合,我花了一个晚上从网上找到Skype API说明文档简单地实现了Skype通话和拨号以及发送文字聊天消息的简单功能,仅此达到抛砖引玉的目的。 -Skype is a very outstanding IP telephony communications tool, not only PC to PC, but also PC to PSTN, is very popular today. Skype to accelerate our development of open API, In fact, the so-called API is not really the Win32 API function, but a series of news packages and I spent one night on the Internet to find Skype API documentation to make a simple call and dial-up Skype and send a text chat news simple function, this alone get feedback purposes.
Platform: | Size: 19456 | Author: liulu | Hits:

[midi programMIDI-API-Wrapper

Description: 这是一个用于Midi处理的工具,提供了MIDI处理的相关类库,提供了示例程序模拟的钢琴输入界面-This is a treatment tool for Midi, MIDI provides a treatment of related class libraries, sample programs provided piano simulation input interface
Platform: | Size: 8597504 | Author: dayun | Hits:

[Delphi/CppBuilderDelphi.Windows.API

Description: 这是一个有关Delphi中的API的介绍,相应的API都有代码实例,是一个很不错的工具。不同于其他的工具-This is a Delphi in the introduction of the API, the corresponding API has code examples, is a very good tool
Platform: | Size: 1297408 | Author: kfbcjb | Hits:

[JSP/JavaStruts-API

Description: Java web 开发中使用到的Struts-API文档-This is about java web development tool of Struts。
Platform: | Size: 1166336 | Author: 华隆 | Hits:

[Multimedia DevelopAPI

Description: 这是一个API绘图小程序,使用C++作为开发工具,在VC下就可以运行-This is a small program drawing API, using C++ as a development tool, can run under VC
Platform: | Size: 774144 | Author: 陈涛 | Hits:

[Program docKvaser-CANLIB-API

Description: 整理后的Kvaser CAN工具API函数库。方便对Kvaser CAN进行编程。-Kvaser CAN after finishing tool API library. Kvaser CAN facilitate programming.
Platform: | Size: 229376 | Author: 杨勇 | Hits:

[OtherOM API测试工具(可执行程序、使用说明、代码)

Description: OM调用API测试工具。包含可执行程序、使用说明、代码等。(The OM invokes the API test tool.)
Platform: | Size: 410624 | Author: 六月零一 | Hits:
« 12 3 4 5 6 7 8 9 10 ... 16 »

CodeBus www.codebus.net